home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / FIDO-NET.SCR < prev    next >
Text File  |  1986-02-22  |  1KB  |  51 lines

  1. .THIS IS A LINKED SCRIPT FOR FIDO-NET SYSTEMS.
  2. .THE PROMPTS YOU GET FROM FIDO MAY BE DIFFERENT FROM THESE,
  3. .SO PREPARE TO EDIT!!
  4.  
  5. .ALSO FIDO IS VERY TOUCHY ABOUT PAUSES AND STRAY CHARACTERS!!
  6.  
  7. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  8. .  [1] Your First Name
  9. .  [2] Your Last Name
  10. .  [3] Your Password
  11.  
  12. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  13.  
  14. .Display message on-screen only
  15. NOTE ** LOGON TO FIDO-NET **
  16.  
  17. .The next line says to WAITFOR 60 seconds before halting script
  18. TIMEOUT 60
  19.  
  20. .FIDO-NET 'logon' is two spaces, separated by pauses
  21. SEND "~ ~ ~"
  22.  
  23. .Wait for FIDO-NET to request your first name
  24. WAITFOR "FIRST"
  25.  
  26. .[1] Reply with your first name, PAUSE first
  27. SEND "~~FIRSTNAME{"
  28.  
  29. .Wait for FIDO-NET to request your last name
  30. WAITFOR "LAST"
  31.  
  32. .[2] Send your last name, PAUSE first
  33. SEND "~~LASTNAME{"
  34.  
  35. .Wait for FIDO-NET to request confirmation of your name
  36. WAITFOR "]"
  37.  
  38. .Confirm it, PAUSE first
  39. SEND "~~y{"
  40.  
  41. .Wait for FIDO-NET to request your password
  42. WAITFOR "Password: "
  43.  
  44. .[3] Send pause, your password; include control characters if required
  45. SEND "~~FAKE-PASSWORD{"
  46.  
  47. .Discontinue script processing; return control to keyboard
  48. RETURN
  49. 
  50.  
  51.